Get NFT`s by wallet address
GET/collectibles/:address
Get NFT`s by wallet address
Request
Path Parameters
address stringrequired
Example: {{wallet_address}}
Query Parameters
apiKey stringrequired
Example: {{publicKey}}
Responses
- 200
- 403
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object
account object
id string
address string
collectibles object[]
id string
created string
tokenId string
description string
descriptorUri string
name string
imageURL string
creator object
id string
owner object
id string
collection object
collectionName string
collectionSymbol string
collectionAddress string
{
"data": {
"account": {
"id": "{{wallet_address}}",
"address": "{{wallet_address}}",
"collectibles": [
{
"id": "0xa7239f619cafdf010e4fe71bc0f52ca497cac7e2-0x121",
"created": "1704724260",
"tokenId": "289",
"description": null,
"descriptorUri": "https://www.npmjs.com/package/body-parser289",
"name": null,
"imageURL": null,
"creator": {
"id": "{{wallet_address}}"
},
"owner": {
"id": "{{wallet_address}}"
},
"collection": {
"collectionName": "MyToken",
"collectionSymbol": "MTK",
"collectionAddress": "0xa7239f619cafdf010e4fe71bc0f52ca497cac7e2"
}
}
]
}
}
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage object
statusCode integer
message string
error string
path string
{
"statusCode": 403,
"errorMessage": {
"statusCode": 403,
"message": "Forbidden resource",
"error": "Forbidden"
},
"path": "/api/v0/graphql/collectibles{{wallet_address}}=pk_KRGd_qRcUSm9c0NrwFv3ZYxf%20"
}
Loading...